home *** CD-ROM | disk | FTP | other *** search
/ The Trig Explorer / The Trig Explorer.iso / mac / Explorer / Ex_Right.dxr / 00055.ls < prev    next >
Encoding:
Text File  |  1998-07-22  |  218 b   |  11 lines

  1. on exitFrame
  2.   global a, b, c
  3.   set a to field "A"
  4.   put a * a into field "A2"
  5.   set c to field "C"
  6.   put c * c into field "C2"
  7.   set b to sqrt((c * c) - (a * a))
  8.   put b into field "B"
  9.   put b * b into field "B2"
  10. end
  11.